iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 3
0
Modern Web

技術在走,Vue.js 要有系列 第 3

|D3| 從原始碼看 Vue 渲染機制 (1) - new Vue 做了什麼

  • 分享至 

  • xImage
  •  

Vue.js 的原始碼全都在 src 資料夾下,src 資料夾結構如下

src/        
├── compiler/        # 編譯相關,把 template 編譯為 render function
├── core/            # 核心程式碼
├── platforms/       # 不同平台的支持
├── server/          # server 端渲染
├── sfc/             # .vue 文件的解析,用於 vue-template-compiler
├── shared/          # 通用程式碼

我們從兩隻檔案看 new Vue 做了什麼

  1. src/core/instance/index.js
function Vue (options) {
  if (process.env.NODE_ENV !== 'production' &&
    !(this instanceof Vue)
  ) {
    warn('Vue is a constructor and should be called with the `new` keyword')
  }
  this._init(options)
}

觀察到幾點

  • Vue 只能用 new 關鍵字初始化
  • 調用 this._init 方法,此方法定義在下面 2 中。
  • 從下面 2 中知道,Vue 其實是一個 class( JS 中用 function 實現 class )
  1. src/core/instance/init.js
export function initMixin (Vue: Class<Component>) {
  Vue.prototype._init = function (options?: Object) {
    const vm: Component = this
    // a uid
    vm._uid = uid++

    let startTag, endTag
    /* istanbul ignore if */
    if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
      startTag = `vue-perf-start:${vm._uid}`
      endTag = `vue-perf-end:${vm._uid}`
      mark(startTag)
    }

    // a flag to avoid this being observed
    vm._isVue = true
    // merge options
    if (options && options._isComponent) {
      // optimize internal component instantiation
      // since dynamic options merging is pretty slow, and none of the
      // internal component options needs special treatment.
      initInternalComponent(vm, options)
    } else {
      vm.$options = mergeOptions(
        resolveConstructorOptions(vm.constructor),
        options || {},
        vm
      )
    }
    /* istanbul ignore else */
    if (process.env.NODE_ENV !== 'production') {
      initProxy(vm)
    } else {
      vm._renderProxy = vm
    }
    // expose real self
    vm._self = vm
    initLifecycle(vm)
    initEvents(vm)
    initRender(vm)
    callHook(vm, 'beforeCreate')
    initInjections(vm) // resolve injections before data/props
    initState(vm)
    initProvide(vm) // resolve provide after data/props
    callHook(vm, 'created')

    /* istanbul ignore if */
    if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
      vm._name = formatComponentName(vm, false)
      mark(endTag)
      measure(`vue ${vm._name} init`, startTag, endTag)
    }

    if (vm.$options.el) {
      vm.$mount(vm.$options.el)
    }
  }
}

Vue 初始化最主要做幾件事,其實從執行哪些 function 可以看出來

  • initLifecycle(vm) 初始化生命週期
  • initEvents(vm) 初始化事件中心
  • initRender(vm) 初始化渲染
  • callHook(vm, 'beforeCreate') 調用生命週期 hook,beforeCreate 方法
  • initState(vm) 初始化 data、props、computed、watcher 等等
  • callHook(vm, 'created') 調用生命週期 hook,created 方法

初始化最後若有檢查到 el 屬性,則調用 vm.$mount 方法把vm 掛載到給定的 DOM 元素上

參考


上一篇
|D2| Vue CLI3 安裝與建立 vue 專案
下一篇
|D4| 從原始碼看 Vue 渲染機制 (2) - Virtual DOM
系列文
技術在走,Vue.js 要有30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

我要留言

立即登入留言